home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / GUIDGEN.PAK / GUIDGDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.4 KB  |  53 lines

  1. // guidgdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGuidGenDlg dialog
  15.  
  16. class CGuidGenDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CGuidGenDlg(CWnd* pParent = NULL);    // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CGuidGenDlg)
  24.     enum { IDD = IDD_GUIDGEN_DIALOG };
  25.     int        m_nGuidType;
  26.     //}}AFX_DATA
  27.  
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CGuidGenDlg)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     HICON m_hIcon;
  37.  
  38.     GUID m_guid;    // generated GUID
  39.     void GetFormattedGuid(CString& rString);
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CGuidGenDlg)
  43.     virtual BOOL OnInitDialog();
  44.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  45.     afx_msg void OnPaint();
  46.     afx_msg HCURSOR OnQueryDragIcon();
  47.     virtual void OnOK();
  48.     afx_msg void OnNewguid();
  49.     //}}AFX_MSG
  50.     afx_msg void OnChangedSel(UINT nID);
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.